home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / JAMDisk #07 (1992)(Just Amiga Monthly)[WB].zip / JAMDisk #07 (1992)(Just Amiga Monthly)[WB].adf / DOC9110B.LZH / ar.man next >
Text File  |  1991-10-12  |  1KB  |  37 lines

  1. AR
  2. ==
  3.  
  4. Archiver for LD-style object files.
  5.  
  6. Format:
  7.     ar command [modifiers] archive [file ...]
  8.  
  9. Commands (one only):
  10. d       delete the named files.
  11. m       move the named files to the end of the archive (not of much
  12.         interest to us, given the 's' modifier).
  13. p       extract the named files to standard output.
  14. q       quick append (ie, don't search for duplicates).
  15. r       replace the named files.
  16. t       display table of contents (if no names given, all files shown).
  17. x       extract files (if no names given, all files).
  18.  
  19. Modifiers:
  20. a pn    [r, m only] move 'file' to after member 'pn'.
  21. b pn    [r, m only] move 'file' to before member 'pn'.
  22. c       if 'archive' has to be created, be quiet about it.
  23. i pn    same as b.
  24. o       retain original file date when extracting.
  25. s       generate a SYMDEF entry (as RANLIB would; allows single-pass
  26.         link without special ordering). Don't use this with 'q' unless
  27.         you are only entering one set of files (ie, unless the archive
  28.         is being created in one operation).
  29. u       [r only] replace only changed files.
  30. v       be verbose.
  31.  
  32. Note that only one of a, b, i can be given and 'pn' must be after: eg,
  33.  
  34.     > ar mbv pn archive file
  35.  
  36. moves 'file' before 'pn' in 'archive' verbosely.
  37.